Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@types/ioredis
Advanced tools
Stub TypeScript definitions entry for ioredis, which provides its own types definitions
The @types/ioredis package provides TypeScript type definitions for the ioredis package, which is a robust, performance-focused, and full-featured Redis client for Node.js. By using @types/ioredis, developers can take advantage of TypeScript's static type checking for ioredis, ensuring that they use the ioredis API correctly.
Connecting to Redis
This code sample demonstrates how to create a new Redis client instance to connect to a Redis server using default settings.
import Redis from 'ioredis';
const redis = new Redis();
Executing Redis Commands
This code sample shows how to set a key-value pair in Redis and then retrieve the value of a key asynchronously.
redis.set('key', 'value');
redis.get('key').then(result => console.log(result));
Working with Hashes
This code sample illustrates how to work with Redis hashes by setting and getting field values within a hash.
redis.hset('hashKey', 'field', 'value');
redis.hget('hashKey', 'field').then(result => console.log(result));
Publish/Subscribe
This code sample demonstrates the publish/subscribe pattern where one Redis client publishes a message to a channel and another client subscribes to that channel to receive messages.
const publisher = new Redis();
const subscriber = new Redis();
subscriber.subscribe('channel', () => {
console.log('Subscribed to channel');
});
subscriber.on('message', (channel, message) => {
console.log(`Received message: ${message} from channel: ${channel}`);
});
publisher.publish('channel', 'Hello world!');
Transactions
This code sample shows how to use a pipeline to execute a transaction in Redis, which includes multiple commands that are executed atomically.
const pipeline = redis.pipeline();
pipeline.set('foo', 'bar');
pipeline.del('baz');
pipeline.exec().then(results => {
console.log(results);
});
The 'redis' package is a Node.js client for Redis. It provides similar functionality to ioredis but has different API design choices and lacks some advanced features like built-in cluster support and Lua scripting capabilities.
This is a stub types definition for @types/ioredis (https://github.com/luin/ioredis#readme).
ioredis provides its own type definitions, so you don't need @types/ioredis installed!
FAQs
Stub TypeScript definitions entry for ioredis, which provides its own types definitions
The npm package @types/ioredis receives a total of 1,451,732 weekly downloads. As such, @types/ioredis popularity was classified as popular.
We found that @types/ioredis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.